home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- final class Collections$CheckedCollection$1 implements Iterator<E> {
- // $FF: renamed from: it java.util.Iterator
- private final Iterator<E> field_0;
- // $FF: synthetic field
- final Collections.CheckedCollection this$0;
-
- Collections$CheckedCollection$1(Collections.CheckedCollection var1) {
- this.this$0 = var1;
- this.field_0 = this.this$0.c.iterator();
- }
-
- public boolean hasNext() {
- return this.field_0.hasNext();
- }
-
- public E next() {
- return (E)this.field_0.next();
- }
-
- public void remove() {
- this.field_0.remove();
- }
- }
-